home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / cdplay_y / main.c < prev    next >
Text File  |  1993-07-08  |  392b  |  26 lines

  1. #define CONSOLE 1
  2.  
  3. #include    <stdio.h>
  4. #include    <snd.h>
  5. #include    "cdp.h"
  6.  
  7. void pad_sel();
  8.  
  9. void main()
  10.     {
  11.     int        i = 0;
  12.  
  13.     SND_elevol_init();            /* サウンドボリューム調節 */
  14.     SND_elevol_set(1, 127, 127);
  15.     SND_elevol_mute(0x0030);    /* スイッチビット = 110000 */
  16.  
  17.     cdp_diskinf();
  18.  
  19.     while( i == 0 )                /* 演奏中のイベントループ */
  20.         {
  21.         pad_sel();
  22.         cdp_inf_next();
  23.         }
  24.     }
  25.  
  26.